home *** CD-ROM | disk | FTP | other *** search
/ Especial Multimedia / Especial Multimedia.iso / Multimed / Herra / QVIEW.ZIP / QWK_VIEW.DPR < prev    next >
Text File  |  1997-09-14  |  207b  |  14 lines

  1. program Qwk_view;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {QWKViewForm},
  6.   About in 'ABOUT.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.Run;
  13. end.
  14.